blob: fe7cf47a47b3e41100ff610c694f171d9d1b4b43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// app/vendor-data/page.tsx
import * as React from "react"
import { Separator } from "@/components/ui/separator"
import { useTranslation } from "@/i18n"
interface Props {
params: { lng?: string }
}
export default async function IndexPage({ params }: Props) {
const { lng } = await params
const language = lng || 'ko'
const { t } = await useTranslation(language, 'engineering')
return (
<div className="space-y-6">
<div className="grid gap-4">
<div className="rounded-lg border p-4">
<h4 className="text-sm font-medium">{t('vendorDocuments.gettingStarted.title')}</h4>
<p className="text-sm text-muted-foreground mt-1">
{t('vendorDocuments.gettingStarted.selectProject')}
</p>
</div>
</div>
</div>
)
}
|